home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / src / config / NeXTstep / options.mk < prev   
Encoding:
Text File  |  1995-05-19  |  732 b   |  33 lines

  1. #
  2. # NeXTstep/options.mk --- Part of Makefile for PFE, compiler options for NeXT
  3. #
  4.  
  5. PREFIX    = /usr/local
  6. PFELIB    = $(PREFIX)/lib/pfe
  7. PFEHLP    = $(PFELIB)/help
  8.  
  9. # cc on NeXTstep is actually a sort of gcc 2.2
  10. # Global register variables don't work with that. So if you install a newer
  11. # version of gcc you're better off.
  12. # The config script gets confused by the precompiled headers too.
  13. #CC    = cc -Wall
  14. #OPTIM    = -O2 -fomit-frame-pointer
  15. #DEBUG    = -g -O
  16.  
  17. CC    = gcc -Wall
  18. # comment out -DUNROLL_NEXT when you run it on a Pentium
  19. OPTIM    = -O2 -fomit-frame-pointer -DUSE_REGS -DUNROLL_NEXT
  20. DEBUG    = -g -O
  21.  
  22. CL    = $(CC)
  23. CPP    = $(CC) -E
  24.  
  25. STRIP    = -s
  26. OPTIONS    = -D_BSD# -D_NEXT_SOURCE
  27. TERM_O    = termunix$o
  28. SYS_O    = unix$o
  29. LFLAGS    =# -v
  30. LIBS    = -ltermlib -lm
  31.  
  32.  
  33.